home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / hf^k-3.dms / in.adf / C-Incl.Lha / errno.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-13  |  581 b   |  22 lines

  1. #ifndef _INCLUDE_ERRNO_H
  2. #define _INCLUDE_ERRNO_H
  3.  
  4. /*
  5. **  $VER: errno.h 1.0 (18.1.96)
  6. **  StormC Release 1.1
  7. **
  8. **  '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. extern int errno;
  13.  
  14. #define EUSRBRK 900  /* User break: used as arg to exit() */
  15. #define EASSERT 990  /* macro assert: used as arg to exit() */
  16. #define EFREEMEM 996 /* free() or delete() with illegal arg: used as arg to exit() */
  17. #define ERANGE 1000  /* mathematical overflow */
  18. #define ENONUM 1001  /* string is invalid number */
  19. #define ENOMEM 1002  /* not enough memory */
  20.  
  21. #endif
  22.